HTMLify
index.html
Views: 363 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <!DOCTYPE html> <html lang="en"> <!-- Mirrored from amazing-js-projects.netlify.app/stick hero game by yash-25log/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 20 May 2022 17:09:41 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack --> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div id="score"></div> <canvas id="game" width="375" height="375"></canvas> <div id="introduction">Hold down the mouse to stretch out a stick</div> <div id="perfect">DOUBLE SCORE</div> <button id="restart">RESTART</button> </div> <script src="app.js"></script> </body> <!-- Mirrored from amazing-js-projects.netlify.app/stick hero game by yash-25log/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 20 May 2022 17:09:44 GMT --> </html> |